home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 51 / HCDEMO_UK.iso / Win95 / WPlay 1.70 / Frontend.txt next >
Text File  |  1998-09-19  |  2KB  |  55 lines

  1. WPLAY 1.70 WM_COMMANDS
  2. ----------------------
  3.  
  4. //You can send standard WM_COMMAND messages to the WPlay 1.70
  5. //SendMessage(hwnd_broadcast,WM_COMMAND,WPARAM,LPARAM);
  6. //Use hwnd_broadcast or send command directly to WPlay window (hwnd_wplay).
  7.  
  8. Description                             WPARAM    LPARAM
  9. ----------------------------------------------------------
  10. // Toggles the Equalizer
  11. #define WPLAY_EQUALIZER                 40036     0
  12. // Toggles the Playlist
  13. #define WPLAY_PLAYLIST                  40040     0
  14. // Turns the volume up 5/100 
  15. #define WPLAY_VOLUMEUP                  40058     0
  16. // Turns the volume down 5/100
  17. #define WPLAY_VOLUMEDOWN                40059     0
  18. // Fast forwards 5 seconds
  19. #define WPLAY_FFWD10S                   40060     0
  20. // Rewinds 5 seconds
  21. #define WPLAY_REW10S                    40061     0
  22.  
  23. #define WPLAY_PREVIOUS                  40044     0
  24. #define WPLAY_PLAY                      40045     0
  25. #define WPLAY_PAUSE                     40046     0
  26. #define WPLAY_STOP                      40047     0
  27. #define WPLAY_NEXT                      40048     0
  28. #define WPLAY_REW10S                    40144     0
  29. #define WPLAY_OPEN_FILE                 40145     0
  30. #define WPLAY_FFW10S                    40148     0
  31. #define WPLAY_START_OF_LIST             40154     0    
  32. #define WPLAY_END_OF_LIST               40158     0
  33.  
  34. // Load file(s) box
  35. #define WPLAY_LOADFILE                  40029     0
  36. // pops up the preferences
  37. #define WPLAY_PREFERENCES               40012     0
  38. // pops up the about box
  39. #define WPLAY_ABOUT                     40041     0
  40.  
  41. // Toggles Repeat
  42. #define WPLAY_REPEAT                    40090     0
  43. // Toggles Shuffle
  44. #define WPLAY_SHUFFLE                   40091     0
  45. // Toggles CD-Player
  46. #define WPLAY_CDMODE                    40092     0
  47. // Toggles Mode (Cool Bar)
  48. #define WPLAY_MODE                      40093     0
  49. // Toggles Time Elapsed/Remaining
  50. #define WPLAY_TIMEMODE                  40094     0
  51. // Set Song Playing [1,2,3...]
  52. #define WPLAY_SONGPLAYING               40095     [1,2,3...]
  53. // Set Volume [0..100]
  54. #define WPLAY_VOLUME                    40096     [0..100]
  55.